Upgrade MiniMax default model to M3#177
Open
octo-patch wants to merge 3 commits into
Open
Conversation
- Auto-detect MiniMax when MINIMAX_API_KEY is set (no LLM_PROVIDER needed) - Built-in defaults: model (MiniMax-M2.5), base URL, temperature range - Temperature clamping to MiniMax's accepted (0.01, 1.0] range - Custom model/base URL overrides via MINIMAX_MODEL / MINIMAX_BASE_URL - 15 unit tests + 3 live integration tests - Updated .env.sample and README with MiniMax configuration
- Set MiniMax-M2.7 as default model (was M2.5) - Update highspeed model reference to MiniMax-M2.7-highspeed - Keep all previous models as available alternatives via env var - Update related unit tests and documentation
- Upgrade default model from MiniMax-M2.7 to MiniMax-M3 - Keep MiniMax-M2.7-highspeed as alternative - Update related tests, README, and .env.sample - All 15 unit tests pass
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Upgrade the MiniMax provider's default model from M2.7 to M3, while keeping M2.7 and M2.7-highspeed available as alternatives.
Changes
utils/call_llm.pyMiniMax-M2.7toMiniMax-M3.env.sampleREADME.mdtests/test_call_llm.pyWhy
MiniMax M3 is the latest generation model with a 512K context window, up to 128K output, and image input support. Bumping the default gives users a more capable out-of-the-box experience.
MiniMax-M2.7andMiniMax-M2.7-highspeedare still selectable via theMINIMAX_MODELenv var for users who prefer them.Testing
MINIMAX_API_KEYin CI)